const encoding/json.hex
10 uses
	encoding/json (current package)
		encode.go#L251: const hex = "0123456789abcdef"
		encode.go#L996: 				dst = append(dst, '\\', 'u', '0', '0', hex[b>>4], hex[b&0xF])
		encode.go#L1027: 			dst = append(dst, '\\', 'u', '2', '0', '2', hex[c&0xF])
		indent.go#L26: 			dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
		indent.go#L32: 			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
		indent.go#L59: 			dst = append(dst, '\\', 'u', '0', '0', hex[c>>4], hex[c&0xF])
		indent.go#L67: 			dst = append(dst, '\\', 'u', '2', '0', '2', hex[src[i+2]&0xF])
  | 
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |